home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-09-04 | 1.2 KB | 46 lines |
- /*****************************************************************************
- //
- // Copyright (C) 1991 Texas Instruments Incorporated.
- //
- // Permission is granted to any individual or institution to use, copy, modify,
- // and distribute this software, provided that this complete copyright and
- // permission notice is maintained, intact, in all copies and supporting
- // documentation.
- //
- // Texas Instruments Incorporated provides this software "as is" without
- // express or implied warranty.
- //
- *****************************************************************************
- *
- * Author: Martin Neath
- * Filename: Imakefile
- * Module: pisces/mkdepend
- * Purpose: Imake file for mkdepend
- * Creation Date: 05/11/90
- *
- *****************************************************************************/
-
- LINKDEP =
- ALLCPLUSDEFS =
-
- HDRS = def.h
-
- SRCS = include.$(C) main.$(C) parse.$(C) pr.$(C) cppsetup.$(C) \
- eval.$(C)
-
- OBJS = include.$(OBJ) main.$(OBJ) parse.$(OBJ) pr.$(OBJ) cppsetup.$(OBJ) \
- eval.$(OBJ)
-
- #if !HasVoidSignalReturn
- SIGPROCDEF = $(DFLAG)SIGNALRETURNSINT
- #else
- SIGPROCDEF =
- #endif
-
- LOCAL_C_DEFS = $(SIGPROCDEF) $(MISC_CFLAGS)
-
- All(mkdepend)
- OptimizeCObject()
- CProgram(mkdepend)
-
-